home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / ODAplEvt.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  812 b   |  37 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _ODAPLEVT_
  4. #define _ODAPLEVT_
  5.  
  6. #ifndef _ODRECORD_
  7. #include "ODRecord.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13.  
  14. interface  ODAppleEvent;
  15.  
  16. //==============================================================================
  17. // ODAppleEvent
  18. //==============================================================================
  19.  
  20. interface ODAppleEvent : ODRecord
  21. {
  22.     void InitODAppleEvent();
  23. #ifdef    __SOMIDL__
  24.     implementation
  25.     {
  26.         majorversion = 1; minorversion = 0;
  27.  
  28.           functionprefix = ODAppleEvent;
  29.  
  30.         releaseorder:
  31.             InitODAppleEvent;
  32.     };
  33. #endif
  34. };
  35.  
  36. #endif    //#    _ODAPLEVT_
  37.